home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 14642 / 14642.xpi / chrome / content / createCategory.xul < prev    next >
Extensible Markup Language  |  2009-09-14  |  2KB  |  48 lines

  1. <?xml version="1.0"?>
  2. <!-- Copyright 2009, Boomtango.com, All Rights Reserved -->
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://browser/skin/browser.css" type="text/css" ?>
  5. <?xml-stylesheet href="chrome://boomtango/skin/bt.css" type="text/css" ?> 
  6. <!DOCTYPE page SYSTEM "chrome://boomtango/locale/bt.dtd">
  7. <dialog id="boomtangoCreateCategory" 
  8.     title="&createc.title;"
  9.     onload="mgr.onLoad();"
  10.     ondialogaccept="return mgr.onOK();"
  11.     buttons="accept,cancel"
  12.     buttonlabelaccept="&createc.create;"
  13.    
  14.     style="background-color: white !important;"
  15.     xmlns:html="http://www.w3.org/1999/xhtml"
  16.             xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  17.     <vbox>
  18.         <label id="title" value="&createc.title;" />
  19.         <description>
  20.             &createc.desc;
  21.         </description>
  22.         <grid>
  23.             <columns>
  24.                 <column />
  25.                 <column />
  26.             </columns>
  27.             <rows>
  28.                 <row>
  29.                     <label value="&createc.name;"/>
  30.                     <textbox id="name" />
  31.                 </row>
  32.                 <row>
  33.                     <label value="&createc.keywords;" />
  34.                     <vbox>
  35.                         <textbox id="keywords" />
  36.                         <label id="keyword_desc" value="&createc.keywords.desc;" />
  37.                     </vbox>
  38.                 </row>
  39.                 <row>
  40.                     <spacer />
  41.                     <checkbox id="regex" label="&createc.regex;"  onclick="mgr.onRegexClick();" />
  42.                 </row>
  43.             </rows>
  44.         </grid>
  45.     </vbox>
  46.     <script src="createCategory.js" />
  47. </dialog>
  48.